From: jenkins-bot Date: Sat, 30 Dec 2017 21:25:14 +0000 (+0000) Subject: Merge "Remove self-explaining "section heading" comments from classes" X-Git-Tag: 1.31.0-rc.0~1040 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=58f37bd13c49f0e449d2373e09016799f9e35f48;hp=-c;p=lhc%2Fweb%2Fwiklou.git Merge "Remove self-explaining "section heading" comments from classes" --- 58f37bd13c49f0e449d2373e09016799f9e35f48 diff --combined includes/context/RequestContext.php index cf5c939994,652f0686b1..47d1684e60 --- a/includes/context/RequestContext.php +++ b/includes/context/RequestContext.php @@@ -81,13 -81,17 +81,13 @@@ class RequestContext implements IContex private static $instance = null; /** - * Set the Config object - * - * @param Config $c + * @param Config $config */ - public function setConfig( Config $c ) { - $this->config = $c; + public function setConfig( Config $config ) { + $this->config = $config; } /** - * Get the Config object - * * @return Config */ public function getConfig() { @@@ -437,8 -441,6 +437,6 @@@ return $this->skin; } - /** Helpful methods **/ - /** * Get a Message object with context set * Parameters are the same as wfMessage() @@@ -454,8 -456,6 +452,6 @@@ return call_user_func_array( 'wfMessage', $args )->setContext( $this ); } - /** Static methods **/ - /** * Get the RequestContext object associated with the main request *